Skip to content

Типы

  1. CardInterface - Тип всех карточек
ts
export interface CardInterface {
  name: string // Имя
  description: string // Описание
}
  1. Message - Тип для сообщений в игре
ts
export interface Message {
  content: string // Текст сообщения ии
  role: 'user' | 'assistant' | 'system' // роль ии
}